home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / ELINK.DXR / 00017_Preferences Stuff.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  578 b   |  17 lines

  1. on doPrefThingy
  2.   if FileExists(the moviePath & "Prefs\prefs.txt") = 0 then
  3.     getPrefThingy()
  4.   else
  5.     SetPref("Prefs.txt", field "cdDrive" & "," & field "browserSelect" & "," & the moviePath & ",")
  6.   end if
  7. end
  8.  
  9. on getPrefThingy
  10.   set thePrefs to getPref("Prefs.txt")
  11.   put thePrefs into field "The Preferences"
  12.   put item 1 of field "The Preferences" into field "cdDrive"
  13.   put item 2 of field "The Preferences" into field "browserSelect"
  14.   put item 3 of field "The preferences" into field "pathToProj"
  15.   put item 4 of field "The preferences" into field "emailSelect"
  16. end
  17.